home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / Arashi 1.1.1 / source code / For your think c folder / Misc / NumbersInternal.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-14  |  663 b   |  34 lines  |  [TEXT/MMCC]

  1. /*/
  2.      Project Arashi: NumbersInternal.h
  3.      Major release: Version 1.1d2, 9/5/95
  4.  
  5.      Last modification: Friday, July 14, 1995, 0:49
  6.      Created: Thursday, October 13, 1994, 16:00
  7.  
  8.      Copyright © 1994-1995, Juri Munkki
  9. /*/
  10.  
  11. #pragma once
  12. #ifndef __NUMBERSINTERNAL__
  13. #define __NUMBERSINTERNAL__
  14.  
  15. #ifdef powerc
  16.     #include <fenv.h>
  17.     #include <fp.h>
  18. #else
  19.     #include <SANE.h>
  20.     #define decimal        Decimal
  21.     #ifdef __MWERKS__
  22.     #define    decform    DecForm
  23.     #endif    
  24.     #ifndef double_t
  25.         #define double_t    long double
  26.     #endif
  27. #endif
  28. void            NumberToDecimalRecord(    double_t     num,
  29.                                         decimal    *decimalRecord,
  30.                                         short     howManyDecimals);
  31.  
  32. #include "Numbers.h"
  33. #endif
  34.